home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH10_3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  747b  |  32 lines

  1.                                          /* Chapter 10 - Program 7 */
  2. #include "stdio.h"
  3.  
  4. void main()
  5. {
  6. FILE *fp1;
  7. char oneword[100], filename[25];
  8. char *c;
  9.  
  10.    printf("Enter filename -> ");
  11.    scanf("%s", filename);         /* read the desired filename */
  12.    fp1 = fopen(filename, "r");
  13.    if (fp1 == NULL)
  14.       printf("File doesn't exist\n");
  15.    else {
  16.       do {
  17.          c = fgets(oneword, 100, fp1); /* get a line from the file */
  18.          if (c != NULL)
  19.             printf("%s", oneword);    /* display it on the monitor */
  20.       } while (c != NULL);            /* repeat until NULL         */
  21.    }
  22.    fclose(fp1);
  23. }
  24.  
  25.  
  26.  
  27. /* Result of execution
  28.  
  29. (The output depends on weather you type in a good filename.)
  30.  
  31. */
  32.